home *** CD-ROM | disk | FTP | other *** search
/ Total Network Tools 2002 / NextStepPublishing-TotalNetworkTools2002-Win95.iso / Archive / Web Server / TinyWeb Server.EXE / CGITEST.ZIP / world.c < prev   
Encoding:
C/C++ Source or Header  |  1998-10-17  |  492 b   |  19 lines

  1. //////////////////////////////////////////////////////////////////////////
  2. //
  3. //  CGI Testing Example
  4. //
  5. //  Copyright (C) 1998 RIT Research Labs
  6. //
  7. //  This is a sample 'Hello World' program, where 'Hello' is printed
  8. //  from a perl script and 'World' is printed from an executable written in
  9. //  C and invoked from the perl script.
  10. //
  11. //////////////////////////////////////////////////////////////////////////
  12.  
  13. #include <stdio.h>
  14.  
  15. void main(void)
  16. {
  17.   printf("World\n");
  18. }
  19.